% V20210224 - 9.13 GW_ADD_INPUTPASSWORD INCLUDE "GW.bas" p = GW_NEW_PAGE() ctl = GW_ADD_INPUTPASSWORD(p, "Type a password:", "Top Secret") GW_RENDER(p) DO % Wait for user action. r$ = GW_WAIT_ACTION$() % Example feedback. POPUP r$ % End when BACK key is pressed. UNTIL r$ = "BACK" PRINT GW_GET_VALUE$(ctl) END "End of InputPassword control."